home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / cddk9606.zip / HEADERS.ARJ / LORD.INT < prev    next >
Text File  |  1996-06-14  |  3KB  |  73 lines

  1.  
  2. { ───────────────────────────────────────────────────────────────────────── }
  3. {  LORD: Legend of the Red Dragon Support                                   }
  4. {  Copyright 1996 David Pinch ∙ All Rights Reserved Worldwide               }
  5. { ───────────────────────────────────────────────────────────────────────── }
  6.  
  7. UNIT LORD;
  8.  
  9. {$B-} { . . . . . . . . . . . . . . . . . . . . Shortcut boolean evaluation }
  10. {$F+} { . . . . . . . . . . . . . . . . . . . .  Force far calls for safety }
  11. {$I-} { . . . . . . . . . . . . . . . . . . . Disable input/output checking }
  12. {$O+} { . . . . . . . . . . . . . . . . . . Allow this unit to be overlayed }
  13. {$Q-} { . . . . . . . . . . . . . .  Do not generate overflow-checking code }
  14. {$R-} { . . . . . . . . . . . . . . . . Do not generate range-checking code }
  15. {$S-} { . . . . . . . . . . . . . . . . Do not generate stack-checking code }
  16. {$X+} { . . . . . . . . . . . Extended syntax for pChars and function calls }
  17.  
  18. INTERFACE
  19.  
  20. CONST
  21.  
  22.   LORDDirectory : pChar = NIL;
  23.  
  24.   LORD_3rdParty : pChar = NIL;  { 3RDPARTY .DAT }
  25.   LORD_BadSay   : pChar = NIL;  { BADSAY   .DAT }
  26.   LORD_Config   : pChar = NIL;  { LORD     .DAT }
  27.   LORD_GoodSay  : pChar = NIL;  { GOODSAY  .DAT }
  28.   LORD_LEnemy   : pChar = NIL;  { LENEMY   .DAT }
  29.   LORD_LockOut  : pChar = NIL;  { LOCKOUT  .DAT }
  30.   LORD_NormSay  : pChar = NIL;  { NORMSAY  .DAT }
  31.   LORD_Player   : pChar = NIL;  { PLAYER   .DAT }
  32.   LORD_RIP      : pChar = NIL;  { LORDRIP  .DAT }
  33.   LORD_Text     : pChar = NIL;  { LORDTXT  .DAT }
  34.  
  35.  
  36. {#Start}
  37.  
  38. PROCEDURE RegisterLORDFiles;
  39.   {
  40.   PURPOSE  : Registers the LORD (Legend of the Red Dragon) file paths.
  41.  
  42.   NOTES    : This procedure allows you or the sysop to access the various
  43.              LORD paths in any script or text file.  This can be useful
  44.              in your installation program.
  45.  
  46.              The LORD unit will automatically search for the LORD files
  47.              at run-time.
  48.  
  49.     ┌──────────────┬───────────────┬─────────────────────────────────────┐
  50.     │  Macro Name  │ LORD.TPU Name │ Path to...                          │
  51.     ├──────────────┼───────────────┼─────────────────────────────────────┤
  52.     │ 3RDPARTY.DAT │ LORD_3rdParty │ List of installed IGMs              │
  53.     │ BADSAY.DAT   │ LORD_BadSay   │ Lamentings for death in user battle │
  54.     │ GOODSAY.DAT  │ LORD_GoodSay  │ Sayings when user battle is won     │
  55.     │ LENEMY.DAT   │ LORD_LEnemy   │ Enemy list                          │
  56.     │ LOCKOUT.DAT  │ LORD_LockOut  │ List of locked-out users            │
  57.     │ LORD.DAT     │ LORD_Config   │ LORD configuration                  │
  58.     │ LORDRIP.DAT  │ LORD_RIP      │ RIP (Remote Imaging Protocol) files │
  59.     │ LORDTXT.DAT  │ LORD_Text     │ Text files libraries                │
  60.     │ NORMSAY.DAT  │ LORD_NormSay  │ Lamentings for forest death         │
  61.     │ PLAYER.DAT   │ LORD_Player   │ Player database                     │
  62.     └──────────────┴───────────────┴─────────────────────────────────────┘
  63.  
  64.   SEE ALSO : RegisterLORD
  65.   }
  66.  
  67.  
  68. IMPLEMENTATION
  69.  
  70. { The source code is available upon registration. }
  71.  
  72. END.
  73.